home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / gtparagraphstyle.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-11-23  |  3.9 KB  |  124 lines

  1. /*
  2. For general Scribus (>=1.3.2) copyright and licensing information please refer
  3. to the COPYING file provided with the program. Following this notice may exist
  4. a copyright and/or license notice that predates the release of Scribus 1.3.2
  5. for which a new license (GPL+exception) is in place.
  6. */
  7. /***************************************************************************
  8.  *   Copyright (C) 2004 by Riku Leino                                      *
  9.  *   tsoots@gmail.com                                                      *
  10.  *                                                                         *
  11.  *   This program is free software; you can redistribute it and/or modify  *
  12.  *   it under the terms of the GNU General Public License as published by  *
  13.  *   the Free Software Foundation; either version 2 of the License, or     *
  14.  *   (at your option) any later version.                                   *
  15.  *                                                                         *
  16.  *   This program is distributed in the hope that it will be useful,       *
  17.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
  18.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
  19.  *   GNU General Public License for more details.                          *
  20.  *                                                                         *
  21.  *   You should have received a copy of the GNU General Public License     *
  22.  *   along with this program; if not, write to the                         *
  23.  *   Free Software Foundation, Inc.,                                       *
  24.  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  25.  ***************************************************************************/
  26.  
  27. #ifndef GTPARAGRAPHSTYLE_H
  28. #define GTPARAGRAPHSTYLE_H
  29.  
  30. #include "scribusapi.h"
  31. #include "gtstyle.h"
  32. #include "sctextstruct.h"
  33.  
  34. enum Alignment {
  35.     LEFT,
  36.     CENTER,
  37.     RIGHT,
  38.     BLOCK,
  39.     FORCED,
  40.     AlignmentMAX
  41. };
  42.  
  43. enum TabType {
  44.     LEFT_T,
  45.     RIGHT_T,
  46.     FULL_STOP_T,
  47.     COMMA_T,
  48.     CENTER_T
  49. };
  50.  
  51. class SCRIBUS_API gtParagraphStyle : public gtStyle
  52. {
  53. private:
  54.     void init();
  55. protected:
  56.     int    flags;
  57.     bool   defaultStyle;
  58.     double lineSpacing;
  59.     int    alignment;
  60.     double indent;
  61.     double firstLineIndent;
  62.     double spaceAbove;
  63.     double spaceBelow;
  64.     QList<ParagraphStyle::TabRecord> tabValues;
  65.     bool dropCap;
  66.     int  dropCapHeight;
  67.     bool adjToBaseline;
  68.     bool autoLineSpacing;
  69.     bool isVisible;
  70. public:
  71.  
  72.     typedef enum
  73.     {
  74.         lineSpacingWasSet = 1,
  75.         alignmentWasSet = 2,
  76.         indentWasSet = 4,
  77.         firstIndentWasSet = 8,
  78.         spaceAboveWasSet  = 16,
  79.         spaceBelowWasSet = 32,
  80.         tabValueWasSet = 64,
  81.         fillShadeWasSet = 128,
  82.         dropCapWasSet = 256,
  83.         dropCapHeightWasSet = 512,
  84.         adjToBaselineWasSet = 1024,
  85.         autoLineSpacingWasSet  = 2048,
  86.     } wasSetFlags;
  87.  
  88.     int    getFlags();
  89.     bool   isDefaultStyle();
  90.     void   setDefaultStyle(bool defStyle);
  91.     double getLineSpacing();
  92.     void   setLineSpacing(double newLineSpacing);
  93.     bool   getAutoLineSpacing();
  94.     void   setAutoLineSpacing(bool newALS);
  95.     int    getAlignment();
  96.     void   setAlignment(Alignment newAlignment);
  97.     void   setAlignment(int newAlignment);
  98.     double getIndent();
  99.     void   setIndent(double newIndent);
  100.     double getFirstLineIndent();
  101.     void   setFirstLineIndent(double newFirstLineIndent);
  102.     double getSpaceAbove();
  103.     void   setSpaceAbove(double newSpaceAbove);
  104.     double getSpaceBelow();
  105.     void   setSpaceBelow(double newSpaceBelow);
  106.     QList<ParagraphStyle::TabRecord>* getTabValues();
  107.     void   setTabValue(double newTabValue, TabType ttype = LEFT_T);
  108.     bool   hasDropCap();
  109.     void   setDropCap(bool newDropCap);
  110.     void   setDropCap(int newHeight);
  111.     int    getDropCapHeight();
  112.     void   setDropCapHeight(int newHeight);
  113.     bool   isAdjToBaseline();
  114.     void   setAdjToBaseline(bool newAdjToBaseline);
  115.     void   getStyle(gtStyle* style);
  116.     gtParagraphStyle(QString name);
  117.     gtParagraphStyle(const gtParagraphStyle& p);
  118.     gtParagraphStyle(const gtStyle& s);
  119.     ~gtParagraphStyle();
  120.     QString target();
  121. };
  122.  
  123. #endif // GTPARAGRAPHSTYLE_H
  124.